A27 - Calculate GCD
提出
code: python
a, b = map(int, input().split())
import math
print(math.gcd(a, b))
解答
code: python
def gcd(a, b):
while a >= 1 and b >= 1:
if a >= b:
a = a % b # a の値を変更する場合
else:
b = b % a # b の値を変更する場合
if a >= 1:
return a
return b
a, b = map(int, input().split())
print(gcd(a, b))